home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 December / PC Answers December 1995 (disc errors).iso / mxc / glossary.dir / 00017_Asset list.ls < prev    next >
Encoding:
Text File  |  1995-04-27  |  645 b   |  21 lines

  1. on mouseDown
  2.   set gMyLine to the mouseLine
  3.   if gMyLine < 0 then
  4.     exit
  5.   end if
  6.   if the machineType <> 256 then
  7.     if the colorDepth = 8 then
  8.       set the foreColor of field "asset list" to 255
  9.       set the foreColor of line gMyLine of field "asset list" to 0
  10.     else
  11.       set the foreColor of field "asset list" to 0
  12.       set the foreColor of line gMyLine of field "asset list" to 16777215
  13.     end if
  14.   else
  15.     set the foreColor of field "asset list" to 255
  16.     set the foreColor of line gMyLine of field "asset list" to 0
  17.   end if
  18.   put EMPTY before line 1 of field (gMyLine + 50)
  19.   set the castNum of sprite 6 to gMyLine + 50
  20. end
  21.